home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 15 / BBS in a box XV-2.iso / Files II / Prog / M / MacPerl 4.13 appl.sit / MacPerl ƒ / t / op / stat.t < prev    next >
Encoding:
Text File  |  1993-10-23  |  5.4 KB  |  175 lines  |  [TEXT/MPS ]

  1. #!./perl
  2.  
  3. # $RCSfile: stat.t,v $$Revision: 4.0.1.3 $$Date: 91/11/11 16:44:49 $
  4.  
  5. print "1..56\n";
  6.  
  7. chop($cwd = `directory`);
  8.  
  9. $DEV = "";
  10.  
  11. unlink "Op.stat.tmp";
  12. open(FOO, ">Op.stat.tmp");
  13.  
  14. ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,
  15.     $blksize,$blocks) = stat(FOO);
  16. if ($nlink == 1) {print "ok 1\n";} else {print "not ok 1\n";}
  17. if ($mtime && $mtime == $ctime) {print "ok 2\n";} else {print "not ok 2\n";}
  18.  
  19. print FOO "Now is the time for all good men to come to.\n";
  20. close(FOO);
  21.  
  22. sleep 2;
  23.  
  24. `delete -y Op.stat.tmp2; ln Op.stat.tmp Op.stat.tmp2; chmod 644 Op.stat.tmp`;
  25.  
  26. ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,
  27.     $blksize,$blocks) = stat('Op.stat.tmp');
  28.  
  29. if ($nlink == 2) {print "ok 3\n";} else {print "not ok 3\n";}
  30. if (($mtime && $mtime != $ctime) || $cwd =~ m#/afs/#) {
  31.     print "ok 4\n";
  32. }
  33. else {
  34.     print "not ok 4\n";
  35. }
  36. print "#4    :$mtime: != :$ctime:\n";
  37.  
  38. `delete -y Op.stat.tmp`;
  39. `Echo -n > Op.stat.tmp`;
  40.  
  41. if (-z 'Op.stat.tmp') {print "ok 5\n";} else {print "not ok 5\n";}
  42. if (! -s 'Op.stat.tmp') {print "ok 6\n";} else {print "not ok 6\n";}
  43.  
  44. `echo hi >Op.stat.tmp`;
  45. if (! -z 'Op.stat.tmp') {print "ok 7\n";} else {print "not ok 7\n";}
  46. if (-s 'Op.stat.tmp') {print "ok 8\n";} else {print "not ok 8\n";}
  47.  
  48. unlink 'Op.stat.tmp';
  49. $olduid = $>;        # can't test -r if uid == 0
  50. `echo hi >Op.stat.tmp`;
  51. chmod 0,'Op.stat.tmp';
  52. eval '$> = 1;';        # so switch uid (may not be implemented)
  53. if (!$> || ! -r 'Op.stat.tmp') {print "ok 9\n";} else {print "not ok 9\n";}
  54. if (!$> || ! -w 'Op.stat.tmp') {print "ok 10\n";} else {print "not ok 10\n";}
  55. eval '$> = $olduid;';        # switch uid back (may not be implemented)
  56. print "# olduid=$olduid, newuid=$>\n" unless ($> == $olduid);
  57. if (! -x 'Op.stat.tmp') {print "ok 11\n";} else {print "not ok 11\n";}
  58.  
  59. foreach ((12,13,14,15,16,17)) {
  60.     print "ok $_\n";        #deleted tests
  61. }
  62.  
  63. chmod 0700,'Op.stat.tmp';
  64. if (-r 'Op.stat.tmp') {print "ok 18\n";} else {print "not ok 18\n";}
  65. if (-w 'Op.stat.tmp') {print "ok 19\n";} else {print "not ok 19\n";}
  66. if (-x 'Op.stat.tmp') {print "ok 20\n";} else {print "not ok 20\n";}
  67.  
  68. if (-f 'Op.stat.tmp') {print "ok 21\n";} else {print "not ok 21\n";}
  69. if (! -d 'Op.stat.tmp') {print "ok 22\n";} else {print "not ok 22\n";}
  70.  
  71. if (-d ':') {print "ok 23\n";} else {print "not ok 23\n";}
  72. if (! -f ':') {print "ok 24\n";} else {print "not ok 24\n";}
  73.  
  74. if (`files -l perl` =~ /^l.*->/) {
  75.     if (-l 'perl') {print "ok 25\n";} else {print "not ok 25\n";}
  76. }
  77. else {
  78.     print "ok 25\n";
  79. }
  80.  
  81. if (-o 'Op.stat.tmp') {print "ok 26\n";} else {print "not ok 26\n";}
  82.  
  83. if (-e 'Op.stat.tmp') {print "ok 27\n";} else {print "not ok 27\n";}
  84. `delete -y Op.stat.tmp Op.stat.tmp2`;
  85. if (! -e 'Op.stat.tmp') {print "ok 28\n";} else {print "not ok 28\n";}
  86.  
  87. if ($DEV !~ /\nc.* (\S+)\n/)
  88.     {print "ok 29\n";}
  89. elsif (-c "/dev/$1")
  90.     {print "ok 29\n";}
  91. else
  92.     {print "not ok 29\n";}
  93. if (! -c '.') {print "ok 30\n";} else {print "not ok 30\n";}
  94.  
  95. if ($DEV !~ /\ns.* (\S+)\n/)
  96.     {print "ok 31\n";}
  97. elsif (-S "/dev/$1")
  98.     {print "ok 31\n";}
  99. else
  100.     {print "not ok 31\n";}
  101. if (! -S '.') {print "ok 32\n";} else {print "not ok 32\n";}
  102.  
  103. if ($DEV !~ /\nb.* (\S+)\n/)
  104.     {print "ok 33\n";}
  105. elsif (-b "/dev/$1")
  106.     {print "ok 33\n";}
  107. else
  108.     {print "not ok 33\n";}
  109. if (! -b '.') {print "ok 34\n";} else {print "not ok 34\n";}
  110.  
  111. $cnt = $uid = 0;
  112.  
  113. die "Can't run op/stat.t test 35 without pwd working" unless $cwd;
  114. chdir "$ENV{'MPW'}Tools:" || die "Can't cd to $ENV{'MPW'}Tools:";
  115. while (defined($_ = <≈>)) {
  116.     $cnt++;
  117.     $uid++ if -u;
  118.     last if $uid && $uid < $cnt;
  119. }
  120. chdir $cwd || die "Can't cd back to $cwd";
  121.  
  122. # I suppose this is going to fail somewhere...
  123. if ($uid > 0 && $uid < $cnt) {print "ok 35\n";} else {print "not ok 35\n";}
  124.  
  125. unless (open(tty,"Dev:Console")) {
  126.     print STDERR "Can't open Dev:Console--run t/TEST outside of make.\n";
  127. }
  128. if (-t tty) {print "ok 36\n";} else {print "not ok 36\n";}
  129. if (-c tty) {print "ok 37\n";} else {print "not ok 37\n";}
  130. close(tty);
  131. if (! -t tty) {print "ok 38\n";} else {print "not ok 38\n";}
  132. open(null,"Dev:Null");
  133. if (! -t null || -e '/xenix') {print "ok 39\n";} else {print "not ok 39\n";}
  134. close(null);
  135. if (-t) {print "ok 40\n";} else {print "not ok 40\n";}
  136.  
  137. # These aren't strictly "stat" calls, but so what?
  138.  
  139. if (-T ':op:stat.t') {print "ok 41\n";} else {print "not ok 41\n";}
  140. if (! -B ':op:stat.t') {print "ok 42\n";} else {print "not ok 42\n";}
  141.  
  142. if (-B '::perl') {print "ok 43\n";} else {print "not ok 43\n";}
  143. if (! -T '::perl') {print "ok 44\n";} else {print "not ok 44\n";}
  144.  
  145. open(FOO,':op:stat.t');
  146. eval { -T FOO; };
  147. if ($@ =~ /not implemented/) {
  148.     print "# $@";
  149.     for (45 .. 54) {
  150.     print "ok $_\n";
  151.     }
  152. }
  153. else {
  154.     if (-T FOO) {print "ok 45\n";} else {print "not ok 45\n";}
  155.     if (! -B FOO) {print "ok 46\n";} else {print "not ok 46\n";}
  156.     $_ = <FOO>;
  157.     if (/perl/) {print "ok 47\n";} else {print "not ok 47\n";}
  158.     if (-T FOO) {print "ok 48\n";} else {print "not ok 48\n";}
  159.     if (! -B FOO) {print "ok 49\n";} else {print "not ok 49\n";}
  160.     close(FOO);
  161.  
  162.     open(FOO,':op:stat.t');
  163.     $_ = <FOO>;
  164.     if (/perl/) {print "ok 50\n";} else {print "not ok 50\n";}
  165.     if (-T FOO) {print "ok 51\n";} else {print "not ok 51\n";}
  166.     if (! -B FOO) {print "ok 52\n";} else {print "not ok 52\n";}
  167.     seek(FOO,0,0);
  168.     if (-T FOO) {print "ok 53\n";} else {print "not ok 53\n";}
  169.     if (! -B FOO) {print "ok 54\n";} else {print "not ok 54\n";}
  170. }
  171. close(FOO);
  172.  
  173. if (-T 'Dev:Null') {print "ok 55\n";} else {print "not ok 55\n";}
  174. if (-B 'Dev:Null') {print "ok 56\n";} else {print "not ok 56\n";}
  175.